home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 March / CMCD0305.ISO / Software / Demo / Maguma / workbench-2.1.0-trial.exe / {app} / tools / xdebug-install.txt < prev   
Text File  |  2004-04-05  |  927b  |  26 lines

  1. The following text needs to go into your local php.ini file and then if you
  2. are using a webserver it will need to be restarted.  Using the CGI binary 
  3. it will be affected at the next execution.
  4.  
  5. To verify that the module is being loaded run a script with a call to 
  6. phpinfo() and at the bottom of the top table you will see a copyright notice
  7. from Zend, after this text in the same table cell you should see the notice
  8. for XDebug.
  9.  
  10. Please modify the zend_extension_ts entry if you have changed the installation
  11. directory away from the default.
  12.  
  13. [xdebug]
  14. zend_extension_ts="c:/Program Files/Maguma Workbench/tools/xdebug-4.3dev-2.0dev.dll"
  15.  
  16. xdebug.auto_trace = On
  17. xdebug.collect_params = On
  18. xdebug.default_enable = On
  19. xdebug.remote_enable = On
  20. xdebug.remote_handler = gdb
  21. xdebug.remote_host = localhost
  22. xdebug.remote_mode = req
  23. xdebug.remote_port = 9000
  24. xdebug.dump_once = On
  25. xdebug.dump_undefined = On
  26.